home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / libcvr / all.h next >
C/C++ Source or Header  |  1990-11-09  |  530b  |  42 lines

  1. /* File: all.h
  2.  *
  3.  * Some configuration constants.
  4.  */
  5. #include <stdio.h>
  6. #include <tmc.h>
  7. #include "config.h"
  8.  
  9. #ifdef HPUX
  10. #include <malloc.h>
  11. #define GOTMALLOC
  12. #endif
  13. #ifndef GOTMALLOC
  14. extern char *malloc();
  15. extern free();
  16. extern char *calloc();
  17. extern char *realloc();
  18. #endif
  19.  
  20. #ifdef HPUX
  21. extern void exit();
  22. #else
  23. extern exit();
  24. #endif
  25.  
  26. #ifdef BSD
  27. #include <strings.h>
  28. #else
  29. #ifdef APOLLO
  30. #include <strings.h>
  31. #else
  32. #include <string.h>
  33. #endif
  34. #endif
  35.  
  36. #ifndef FALSE
  37. #define TRUE 1
  38. #define FALSE 0
  39. #endif
  40.  
  41. extern void perror();
  42.